72b94af4b78f3cbfadc05e069a235f4c2497d026,examples/src/main/java/org/apache/ignite/examples/datagrid/starschema/CacheStarSchemaExample.java,CacheStarSchemaExample,main,#String[]#,66
Before Change
System.out.println(">>> Cache star schema example started.");
// Clean up caches on all nodes before run.
g.cache(PARTITIONED_CACHE_NAME).globalClearAll(0);
g.cache(REPLICATED_CACHE_NAME).globalClearAll(0);
try {
After Change
System.out.println(">>> Cache star schema example started.");
// Clean up caches on all nodes before run.
g.jcache(PARTITIONED_CACHE_NAME).clear();
g.jcache(REPLICATED_CACHE_NAME).clear();
try {